home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / ccs_util.jar / regex / DSList.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-12-09  |  888 b   |  40 lines

  1. package regex;
  2.  
  3. class DSList {
  4.    private Chars chars;
  5.    // $FF: renamed from: to regex.DState
  6.    private DState field_0;
  7.    private DSList next;
  8.  
  9.    // $FF: renamed from: to () regex.DState
  10.    public DState method_0() {
  11.       return this.field_0;
  12.    }
  13.  
  14.    public DSList() {
  15.       this((Chars)null, (DState)null, (DSList)null);
  16.    }
  17.  
  18.    public DSList(Chars var1, DState var2, DSList var3) {
  19.       this.chars = var1;
  20.       this.field_0 = var2;
  21.       this.next = var3;
  22.    }
  23.  
  24.    public void setNext(DSList var1) {
  25.       this.next = var1;
  26.    }
  27.  
  28.    public void setTo(DState var1) {
  29.       this.field_0 = var1;
  30.    }
  31.  
  32.    public DSList next() {
  33.       return this.next;
  34.    }
  35.  
  36.    public Chars chars() {
  37.       return this.chars;
  38.    }
  39. }
  40.